home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / programming / e / powerd0.06 / modules / workbench / startup.m < prev    next >
Text File  |  1999-11-30  |  697b  |  26 lines

  1. /*
  2. **    $VER: startup.m 36.3 (11.7.90)
  3. **    Includes Release 40.15
  4. **
  5. **    workbench startup definitions
  6. **
  7. **    (C) Copyright 1985-1993 Commodore-Amiga, Inc.
  8. **    All Rights Reserved
  9. */
  10.  
  11. MODULE    'exec/types',
  12.             'exec/ports',
  13.             'libraries/dos'
  14.  
  15. OBJECT WBStartup
  16.     Message:Message,            /* a standard message structure */
  17.     Process:PTR TO MsgPort,    /* the process descriptor for you */
  18.     Segment:BPTR,                /* a descriptor for your code */
  19.     NumArgs:LONG,                /* the number of elements in ArgList */
  20.     ToolWindow:PTR TO CHAR,    /* description of window */
  21.     ArgList:PTR TO WBArg        /* the arguments themselves */
  22.  
  23. OBJECT WBArg
  24.     Lock:BPTR,                    /* a lock descriptor */
  25.     Name:PTR TO CHAR            /* a string relative to that lock */
  26.